.container{
    min-height: 100vh;
    background-color: #d1edfbde;
    padding-top: 50px;
    width: 100%;
    background-image: url('../images/bg2.png'); 
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.gallery-text {
    text-align: center;
    margin-top: 50px;
    color: #7450af;
}

.gallery-text h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #7450af;
}

.gallery-text p {
    font-size: 20px;
    color: #7450af;
    margin-bottom: 30px;
}

.gallery-images-holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    flex: 0 0 300px;
    cursor: pointer;
}

.gallery-img:hover {
    
   
}
.gallry-button-holder {
    margin: 30px 0 10px 0;
    text-align: center;
}
.gallery-btn {
    font-size: 20px;
    font-weight: 400;
    color: white;
    padding: 10px;
    border-radius: 20px;
    background-color: #7450af6c;
    cursor: pointer;
    border: 1px solid #7450af;
    transition: all 0.3s ease-in-out;
}
.gallery-btn.active,
.gallery-btn:hover {
    background: #7450af;
}

/* Lightbox stil */
#lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 30px #000a;
}
#lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: color 0.2s;
}
#lightbox-close:hover {
    color: #dd547f;
}

/* Mobile */
@media (max-width: 768px) {

        .container{
        background-image: url('../images/mobile-bg.png');

    }
    .gallery-btn{
        margin: 5px;
    }

    .gallery-images-holder {
        grid-template-columns: repeat(2, 1fr);
    }
}